home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Euroscene 2
/
Euroscene 2.iso
/
USEFUL
/
DeliTracker130
/
Rexx
/
dt_filter.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1994-06-23
|
208 b
|
19 lines
/* DeliTracker - toggles filter */
address 'rexx_DT'
options results
status G led
if result == "no" then do
filter yes
say "Filter is now on..."
end
else do
filter no
say "Filter is now off..."
end